ext4: assign get_fs()->dev_desc before using it
authorStephen Warren <[email protected]>
Thu, 23 May 2013 10:22:10 +0000 (10:22 +0000)
committerTom Rini <[email protected]>
Fri, 24 May 2013 14:04:23 +0000 (10:04 -0400)
commitc28cbfa1a89cae2c0cb13144c8123345d61fdc87
tree0f39e0b94f74e9823bbc3cc7c845ac5e360d44a4
parent24c185cf58a5bef1e0401a0f7e70526d6d9078c7
ext4: assign get_fs()->dev_desc before using it

Commit 50ce4c0 "fs/ext4: Support device block sizes != 512 bytes"
modified ext4fs_set_blk_dev() to calculate total_sect based on
get_fs()->dev_desc->log2blksz rather than SECTOR_SIZE. However, this
value wasn't yet assigned. Move the assignment earlier so the code
doesn't crash or hang.

Cc: Egbert Eich <[email protected]>
Tested-by: Tom Rini <[email protected]>
Signed-off-by: Stephen Warren <[email protected]>
fs/ext4/dev.c